home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Misc / Cookie / CookieV1.0 / cookie.filters / cat.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-12  |  118 b   |  11 lines

  1. #include <stdio.h>
  2.  
  3. /* copy input to output */
  4. main()
  5. {
  6.     int c;
  7.     
  8.     while ((c = getchar()) != EOF) {
  9.         putchar(c);
  10.     }
  11. }